home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Explosion
/
Software Explosion (Fore-Matt Home Computing)(1996).iso
/
games
/
windows
/
winrob
/
shell.prg
< prev
next >
Wrap
Text File
|
1995-03-17
|
897b
|
45 lines
#############################################################################
# SHELL #
# #
# This robot does absolutely nothing. It is meant to be a starting point #
# for creating your own robots. The sections below are used by most robots. #
# Add code and change names as needed to make your own robot! #
# #
#############################################################################
Init
{
Name( "Shell" )
RegCore( Core )
RegCldMissile( MissileHit, 1 )
RegDtcRobot( FoundRobot, 2 )
RegAScan( AutoScan, 3 )
}
AutoScan
{
Scan()
}
Core
{
}
MissileHit
{
}
FoundRobot
{
Fire(1)
Scan()
}
Dead
{
}